home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2005 October
/
PCWOCT05.iso
/
Software
/
FromTheMag
/
Syn Text Editor 2.1.0.46
/
synsetup-2.1.0.46.exe
/
{app}
/
vbs.dci
< prev
Wrap
INI File
|
2003-12-12
|
1KB
|
92 lines
[dim | Dim Statement]
dim |
[if | If Statement]
if | then
end if
[ifelse | If Then Else Statement]
if | then
else
end if
[select | Select Case Statement]
select case |
case
case
end select
[selectelse | Selct Case Statement with else]
select case |
case
case
case else
end select
[sub | Sub Declaration]
sub |()
end sub
[func | Function Declaration]
function |()
end function
[oe | Option Explicit]
option explicit
[for | For Next Statement]
for | = to
next
[foreach | For Each Statement]
for each | in
next
[whilewend | While Wend Statement]
while |
wend
[doloopuntil | Do Loop Until Statement]
do
|
loop until
[dountilloop | Do Until Loop Statement]
do until |
loop
[class | Class Declaration]
class |
end class
[proplet | Property Let Declaration]
property set |()
end property
[propget | Property Get Delclaration]
property set |()
end property
[propset | Property Set Declaration]
property set |()
end property